home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FishMarket 1.0
/
FishMarket v1.0.iso
/
fishies
/
176-200
/
disk_183
/
mklib
/
edlib
/
isodigit.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-05-06
|
281b
|
18 lines
/* edlib version 1.0 of 04/08/88 */
/*
returns a nonzero value if c is the code for an octal digit, otherwise
return zero
*/
#include <ctype.h>
int isodigit(c)
char c;
{
if (c == '9' || c == '8') {
return(0);
} else {
return(isdigit(c));
}
}